home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / redakcyjne / PEBuilder / pebuilder3110a.exe / {app} / plugin / ultravnc / ultravnc.cmd < prev    next >
OS/2 REXX Batch file  |  2005-01-05  |  911b  |  32 lines

  1. @echo off
  2. setlocal
  3. echo VNC: Check if network client is installed
  4. bartpe.exe -c c -q ms_msclient
  5. if not "%errorlevel%" == "0" (
  6.     echo.
  7.     echo VNC: MS Client is not installed!
  8.     echo VNC: Please load client network support before this script!
  9.     goto _err)
  10. echo VNC: Check if server service is installed
  11. bartpe.exe -c s -q ms_server
  12. if not "%errorlevel%" == "0" (
  13.     echo.
  14.     echo VNC: MS Server service is not installed!
  15.     echo VNC: Please load file sharing support before this script!
  16.     goto _err)
  17. echo VNC: Installing VNC Server Service
  18. %~dp0winvnc.exe -installs
  19. echo VNC: Importing registry settings
  20. regedit /s %~dp0vncsettings.reg
  21. echo VNC: Starting the VNC Server Service,
  22. net start "vnc server"
  23. echo VNC: default VNC password is "bartpevnc" !!!
  24. goto _end
  25. :_err
  26. echo.
  27. echo VNC: There was an error, script aborted!!!
  28. rem set errorlevel to 1 by (mis)using color
  29. color 00 
  30. :_end
  31. endlocal
  32.